-
Notifications
You must be signed in to change notification settings - Fork 131
Fix (?) to shared-db testing in microservices.md #1937
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The `cds db -2 sql` and `cds db -2 hana` commands are a bit suspect, as the `db` command doesn't exist. From the paragraph just before these commands, I suspect this should be `compile`, but even then, we need also to specify the `--all` option, otherwise we get the message "You must specify a model to compile.".
compile is the default command, it is documented ( I would prefer to specify that we do compile the model, meaning It looks also as a regression: |
I do not see the --all option documented in cds 9, see |
Why not use cds compile, so the full command? Is there a need to use the shortcut/default? If not, we should not make our users guess/research what we mean. |
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Proposal following @vl-leon's comment
Co-authored-by: René Jeglinsky <[email protected]>
Co-authored-by: René Jeglinsky <[email protected]>
The
cds db -2 sql
andcds db -2 hana
commands are a bit suspect, as thedb
command doesn't exist. From the paragraph just before these commands, I suspect this should becompile
, but even then, we need also to specify the--all
option, otherwise we get the message "You must specify a model to compile.".